NF_LOWER Function

Syntax

Output_String as C = NF_LOWER(C String)

Arguments

String

A character string.

Description

Returns a string that is lowercased except for the first letter.

Discussion

NF_LOWER() leaves the case of the first character of String unchanged, and converts the rest of String to lower case.

Example

nf_lower("ALPHA SOFTWARE CORP") -> "Alpha software corp"

See Also